home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvdraw / demos / dsp_mgr / makefile < prev   
Encoding:
Makefile  |  1997-05-08  |  288 b   |  15 lines

  1. include <dvwin32.mak>
  2.  
  3. # Comment out the next line to disable double buffering.
  4. CFLAGS = $(CFLAGS) -DDOUBLE_BUFFER
  5.  
  6. OBJ = dsp_mgr.obj
  7.  
  8. dsp_mgr.exe: $(OBJ) 
  9.     $(LINK)  $(LINKFLAGS) \
  10.         $(DV_LIBS) \
  11.         $(OBJ) -out:dsp_mgr.exe
  12.  
  13. .c.obj:
  14.     $(CC) $(INCDIRS) $(CFLAGS) $<
  15.